home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist / dist6.3 / ViewKit_dev.idb / usr / include / Vk / VkResource.h.z / VkResource.h
C/C++ Source or Header  |  1996-09-20  |  2KB  |  65 lines

  1. ////////////////////////////////////////////////////////////////////////////////
  2. ///////   Copyright 1992, Silicon Graphics, Inc.  All Rights Reserved.   ///////
  3. //                                                                            //
  4. // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;     //
  5. // the contents of this file may not be disclosed to third parties, copied    //
  6. // or duplicated in any form, in whole or in part, without the prior written  //
  7. // permission of Silicon Graphics, Inc.                                       //
  8. //                                                                            //
  9. // RESTRICTED RIGHTS LEGEND:                                                  //
  10. // Use,duplication or disclosure by the Government is subject to restrictions //
  11. // as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data     //
  12. // and Computer Software clause at DFARS 252.227-7013, and/or in similar or   //
  13. // successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -    //
  14. // rights reserved under the Copyright Laws of the United States.             //
  15. //                                                                            //
  16. ////////////////////////////////////////////////////////////////////////////////
  17. #ifndef VKRESOURCE_H
  18. #define VKRESOURCE_H
  19.  
  20. #include <Xm/Xm.h>
  21.  
  22.  
  23. extern char * VkGetResource(const char * name, 
  24.                 const  char * className);
  25.  
  26.  
  27. extern XtPointer VkGetResource(Widget w, 
  28.                    const char *names, 
  29.                    const char *classNames, 
  30.                    const char *desiredType, 
  31.                    const char *defaultValue);
  32.  
  33.  
  34. ///////////////////////////////////////////////////
  35. // Obsolete interfaces
  36. ///////////////////////////////////////////////////
  37.  
  38.  
  39. extern char * VkGetResource(Widget w, 
  40.                 const char * name, 
  41.                 const char * className);
  42. extern XtPointer VkGetResource(Widget w, 
  43.                    const char * name, 
  44.                    const char * className, 
  45.                    const char * defaultStr);
  46.  
  47. extern XtPointer VkGetResource(Widget w, 
  48.                  const char * name, 
  49.                  const char * className, 
  50.                  const char * desiredType, 
  51.                  int size, 
  52.                  void * defaultValue);
  53.  
  54. extern XtPointer VkGetResource(Widget w, 
  55.                    const char * name, 
  56.                    const char * className, 
  57.                    const char * desiredType, 
  58.                    int size, 
  59.                    const char * defaultValue);
  60.  
  61. #endif
  62.  
  63.  
  64.  
  65.